home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / recipe.dxr / 00031_Full text of rollover help.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  697 b   |  18 lines

  1. property pSpr
  2.  
  3. on beginSprite me
  4.   pSpr = sprite(me.spriteNum)
  5.   customFont(pSpr.member)
  6.   mRefresh(me, "Move the mouse cursor over any item in the bar to see its detailed description here. Small yellow 'tool tips' show the name of the item under the cursor.  Toggle tool tips on or off via the 'h' key or using the 'Show Item names' checkbox on the Options screen.  When tool tips are on, they'll display immediately.  When tool tips are off, they'll appear only if the cursor rests on an item for more than half a second.")
  7. end
  8.  
  9. on mRefresh me, newText
  10.   if not isText(pSpr) then
  11.     exit
  12.   end if
  13.   if voidp(newText) or (newText = EMPTY) then
  14.     exit
  15.   end if
  16.   pSpr.member.text = newText
  17. end
  18.